home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software 2000
/
Software 2000 Volume 1 (Disc 1 of 2).iso
/
utilities
/
u267.dms
/
u267.adf
/
DOC9110B.LZH
/
Startup
< prev
Wrap
Text File
|
1991-10-12
|
935b
|
35 lines
; GCC:Startup
; This is a script for setting up the GCC front end.
; GCC:bin contains cc, cpp, cc1, gas, ld, ar, objdump, nm
; GCC:lib contains startups, libraries
; GCC:include contains system include files
Assign GCC: Applications:gcc ; Applications: is a partition
; The following sets up the standard include directories - amiga_include
; is *not* included in this distribution, because it is (c) C=.
; If you don't do this, cpp searches gnu_gxx_include:, gnu_cc_include:,
; and include: (and you'll get the odd requester for them).
SetEnv GCC_INCLUDES "-I gcc:include -I gcc:amiga_include"
; *NOTE* Do not assign the temporary area (TMPDIR) to the ramdisc unless
; you've got at least 3Mb (otherwise you'll probably run out of memory)
SetEnv TMPDIR "T:"
; final setup: add to path ..
Path GCC:bin add
; alias gcc ..
Alias cc gcc
; bump stack (GNU software is a bit stack-happy)
Stack 131072
; ready to roll ..